home *** CD-ROM | disk | FTP | other *** search
/ Just Sports / Quantum Axcess - Just Sports.iso / basedem / vm.bat < prev   
DOS Batch File  |  1994-09-07  |  511b  |  24 lines

  1. @echo off
  2. if "%1"=="off" goto turnoff
  3. if "%1"=="OFF" goto turnoff
  4. if "%1"=="Off" goto turnoff
  5. if "%1"=="" goto defaultdrive
  6.  
  7. set dos4gvm=virtualsize#5000 swapname#%1\DOS4GVM.SWP
  8. echo Virtual memory for HardBall IV has been enabled.
  9. echo The swap file will be called "%1\DOS4GVM.SWP"
  10. goto done
  11.  
  12. :defaultdrive
  13. set dos4gvm=virtualsize#5000
  14. echo Virtual memory for HardBall IV has been enabled.
  15. goto done
  16.  
  17. :turnoff
  18. set dos4gvm=
  19. echo Virtual memory for HardBall IV has been disabled.
  20.  
  21. :done
  22.  
  23.  
  24.